home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel PPC / lib_show / animal / sample1.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  416 b   |  27 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class SAMPLE1
  5.    
  6. creation {ANY}
  7.    make
  8.    
  9. feature {ANY}
  10.    
  11.    chien: CHIEN;
  12.    
  13.    chat: CHAT;
  14.    
  15.    mille_pattes: MILLE_PATTES;
  16.    
  17.    make is
  18.       do
  19.      !!chat;
  20.      !!chien;
  21.      !!mille_pattes;
  22.      chat.felicitations(chien);
  23.      mille_pattes.felicitations(chat);
  24.       end; 
  25.  
  26. end -- SAMPLE1
  27.